919f6a64d691f1ed6db1968e2f0a2a4e537ffe8b,core/baseLanguage/baseLanguage/source_gen/jetbrains/mps/baseLanguage/util/plugin/run/BaseRunner.java,BaseRunner,getModuleClasspath,#IModule#boolean#,145

Before Change


  }

  protected static Set<String> getModuleClasspath(IModule module, boolean withDependencies) {
    Set<String> result = SetSequence.fromSet(new HashSet<String>());
    IFile classesGen = module.getClassesGen();
    if (classesGen != null) {
      SetSequence.fromSet(result).addElement(classesGen.getAbsolutePath());
    }

    ClasspathStringCollector collector = new ClasspathStringCollector();
    module.getClassPathItem().accept(collector);
    if (withDependencies) {
      AbstractModule.getDependenciesClasspath(CollectionUtil.set(module), true).accept(collector);
    }

    Set<String> delete = SetSequence.fromSet(new HashSet<String>());
    List<String> jdkPath = CommonPaths.getJDKPath();
    List<String> cpList = collector.getResultAndReInit();
    for (String cpItem : ListSequence.fromList(cpList)) {

After Change


  }

  protected static Set<String> getModuleClasspath(IModule module, boolean withDependencies) {
    return SetSequence.fromSetWithValues(new HashSet<String>(), Java_Command.getClasspath(module, withDependencies));
  }

  @NotNull